home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 May: Tool Chest / Dev.CD May 97 TC.toast / Sample Code / Snippets / Development Tools & Languages / MouseInfo / IncludeFiles.h < prev    next >
Encoding:
Text File  |  1995-02-13  |  2.3 KB  |  165 lines  |  [TEXT/MPS ]

  1. //     IncludeFiles.h 
  2. //     Copyright © 1992 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains all the needed Macintosh Toolbox and MacApp
  5. //    header files. It is suitable for a dump file for instance.
  6. //    Version Info (latest first):
  7. //
  8. //    <1>        khs        1.0        First final version
  9. //    <2>        khs        1.0.1    Fixed a memory leak in TMapApplication::GetSleepValue()
  10.  
  11.  
  12. #ifndef __INCLUDEFILES__
  13. #define __INCLUDEFILES__
  14.  
  15. #ifndef __TYPES__
  16. #include <Types.h>
  17. #endif
  18.  
  19. #ifndef __MACAPPTYPES__
  20. #include <MacAppTypes.h>
  21. #endif
  22.  
  23. #ifndef __MEMORY__
  24. #include <Memory.h>
  25. #endif
  26.  
  27. #ifndef __UOBJECT__
  28. #include <UObject.h>
  29. #endif
  30.  
  31. #ifndef __ULIST__
  32. #include <UList.h>
  33. #endif
  34.  
  35. #ifndef __APPLEEVENTS__
  36. #include <AppleEvents.h>
  37. #endif
  38.  
  39. #ifndef __PPCTOOLBOX__
  40. #include <PPCToolbox.h>
  41. #endif
  42.  
  43. #ifndef __EPPC_
  44. #include <EPPC.h>
  45. #endif
  46.  
  47. #ifndef __UEVENT__
  48. #include <UEvent.h>
  49. #endif
  50.  
  51. #ifndef __UCOMMAND__
  52. #include <UCommand.h>
  53. #endif
  54.  
  55. #ifndef __EDITIONS__
  56. #include <Editions.h>
  57. #endif
  58.  
  59. #ifndef __SCRAP__
  60. #include <Scrap.h>
  61. #endif
  62.  
  63.  
  64. #ifndef __DIALOGS__
  65. #include <Dialogs.h>
  66. #endif
  67.  
  68. #ifndef __UEVTHANDLER__
  69. #include <UEventHandler.h>
  70. #endif
  71.  
  72. #ifndef __UAPPLICATION__
  73. #include <UApplication.h>
  74. #endif
  75.  
  76. #ifndef __UDOCUMENT__
  77. #include <UDocument.h>
  78. #endif
  79.  
  80. #ifndef __BALLOONS__
  81. #include <Balloons.h>
  82. #endif
  83.  
  84. #ifndef __UVIEW__
  85. #include <UView.h>
  86. #endif
  87.  
  88. #ifndef __UWINDOW__
  89. #include <UWindow.h>
  90. #endif
  91.  
  92. #ifndef __UFAILURE__
  93. #include <UFailure.h>
  94. #endif
  95.  
  96. #ifndef __UGEOMETRY__
  97. #include <UGeometry.h>
  98. #endif
  99.  
  100. #ifndef __UMACAPPUTILITIES__
  101. #include <UMacAppUtilities.h>
  102. #endif
  103.  
  104. #ifndef __MENUS__
  105. #include <Menus.h>
  106. #endif
  107.  
  108. #ifndef __UMENUMGR__
  109. #include <UMenuMgr.h>
  110. #endif
  111.  
  112. #ifndef __UPATCH__
  113. #include <UPatch.h>
  114. #endif
  115.  
  116. #ifndef __UMACAPPGLOBALS__
  117. #include <UMacAppGlobals.h>
  118. #endif
  119.  
  120. #ifndef __UFILEBASEDDOCUMENT__
  121. #include <UFileBasedDocument.h>
  122. #endif
  123.  
  124. #ifndef __FONTS__
  125. #include <Fonts.h>
  126. #endif
  127.  
  128. #ifndef __PACKAGES__
  129. #include <Packages.h>
  130. #endif
  131.  
  132. #ifndef __TOOLUTILS__
  133. #include <ToolUtils.h>
  134. #endif
  135.  
  136. #ifndef __UERRORMGR__
  137. #include <UErrorMgr.h>
  138. #endif
  139.  
  140. #ifndef __UDIALOG__
  141. #include <UDialog.h>
  142. #endif 
  143.  
  144. #ifndef __ERRORS__
  145. #include <Errors.h>
  146. #endif
  147.  
  148. #ifndef __STDIO__
  149. #include <stdio.h>
  150. #endif
  151.  
  152. #ifndef __PLSTRINGFUNCS__
  153. #include <PLStringFuncs.h>
  154. #endif
  155.  
  156.  
  157. //    Specific files for this implementation
  158.  
  159. #ifndef __RESOURCECONSTANTS__
  160. #include "ResourceConstants.h"
  161. #endif
  162.  
  163. #endif
  164.  
  165.